home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / quartz / quartz10.lha / src / runtime / shmalloc.c < prev    next >
C/C++ Source or Header  |  1990-04-29  |  22KB  |  803 lines

  1. /* dynamic memory allocation for GNU.
  2.    Copyright (C) 1985, 1987 Free Software Foundation, Inc.
  3.  
  4.                NO WARRANTY
  5.  
  6.   BECAUSE THIS PROGRAM IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY
  7. NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT
  8. WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,
  9. RICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE THIS PROGRAM "AS IS"
  10. WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  11. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  12. FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY
  13. AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE
  14. DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  15. CORRECTION.
  16.  
  17.  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.
  18. STALLMAN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY
  19. WHO MAY MODIFY AND REDISTRIBUTE THIS PROGRAM AS PERMITTED BELOW, BE
  20. LIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR
  21. OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  22. USE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
  23. DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR
  24. A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) THIS
  25. PROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
  26. DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.
  27.  
  28.         GENERAL PUBLIC LICENSE TO COPY
  29.  
  30.   1. You may copy and distribute verbatim copies of this source file
  31. as you receive it, in any medium, provided that you conspicuously and
  32. appropriately publish on each copy a valid copyright notice "Copyright
  33. (C) 1985 Free Software Foundation, Inc."; and include following the
  34. copyright notice a verbatim copy of the above disclaimer of warranty
  35. and of this License.  You may charge a distribution fee for the
  36. physical act of transferring a copy.
  37.  
  38.   2. You may modify your copy or copies of this source file or
  39. any portion of it, and copy and distribute such modifications under
  40. the terms of Paragraph 1 above, provided that you also do the following:
  41.  
  42.     a) cause the modified files to carry prominent notices stating
  43.     that you changed the files and the date of any change; and
  44.  
  45.     b) cause the whole of any work that you distribute or publish,
  46.     that in whole or in part contains or is a derivative of this
  47.     program or any part thereof, to be licensed at no charge to all
  48.     third parties on terms identical to those contained in this
  49.     License Agreement (except that you may choose to grant more extensive
  50.     warranty protection to some or all third parties, at your option).
  51.  
  52.     c) You may charge a distribution fee for the physical act of
  53.     transferring a copy, and you may at your option offer warranty
  54.     protection in exchange for a fee.
  55.  
  56. Mere aggregation of another unrelated program with this program (or its
  57. derivative) on a volume of a storage or distribution medium does not bring
  58. the other program under the scope of these terms.
  59.  
  60.   3. You may copy and distribute this program (or a portion or derivative
  61. of it, under Paragraph 2) in object code or executable form under the terms
  62. of Paragraphs 1 and 2 above provided that you also do one of the following:
  63.  
  64.     a) accompany it with the complete corresponding machine-readable
  65.     source code, which must be distributed under the terms of
  66.     Paragraphs 1 and 2 above; or,
  67.  
  68.     b) accompany it with a written offer, valid for at least three
  69.     years, to give any third party free (except for a nominal
  70.     shipping charge) a complete machine-readable copy of the
  71.     corresponding source code, to be distributed under the terms of
  72.     Paragraphs 1 and 2 above; or,
  73.  
  74.     c) accompany it with the information you received as to where the
  75.     corresponding source code may be obtained.  (This alternative is
  76.     allowed only for noncommercial distribution and only if you
  77.     received the program in object code or executable form alone.)
  78.  
  79. For an executable file, complete source code means all the source code for
  80. all modules it contains; but, as a special exception, it need not include
  81. source code for modules which are standard libraries that accompany the
  82. operating system on which the executable file runs.
  83.  
  84.   4. You may not copy, sublicense, distribute or transfer this program
  85. except as expressly provided under this License Agreement.  Any attempt
  86. otherwise to copy, sublicense, distribute or transfer this program is void and
  87. your rights to use the program under this License agreement shall be
  88. automatically terminated.  However, parties who have received computer
  89. software programs from you with this License Agreement will not have
  90. their licenses terminated so long as such parties remain in full compliance.
  91.  
  92.   5. If you wish to incorporate parts of this program into other free
  93. programs whose distribution conditions are different, write to the Free
  94. Software Foundation at 675 Mass Ave, Cambridge, MA 02139.  We have not yet
  95. worked out a simple rule that can be stated here, but we will often permit
  96. this.  We will be guided by the two goals of preserving the free status of
  97. all derivatives of our free software and of promoting the sharing and reuse of
  98. software.
  99.  
  100.  
  101. In other words, you are welcome to use, share and improve this program.
  102. You are forbidden to forbid anyone else to use, share and improve
  103. what you give them.   Help stamp out software-hoarding!  */
  104.  
  105. /*
  106.  * @(#)nmalloc.c 1 (Caltech) 2/21/82
  107.  *
  108.  *    U of M Modified: 20 Jun 1983 ACT: strange hacks for Emacs
  109.  *
  110.  *    Nov 1983, Mike@BRL, Added support for 4.1C/4.2 BSD.
  111.  *
  112.  * This is a very fast storage allocator.  It allocates blocks of a small 
  113.  * number of different sizes, and keeps free lists of each size.  Blocks
  114.  * that don't exactly fit are passed up to the next larger size.  In this 
  115.  * implementation, the available sizes are (2^n)-4 (or -16) bytes long.
  116.  * This is designed for use in a program that uses vast quantities of
  117.  * memory, but bombs when it runs out.  To make it a little better, it
  118.  * warns the user when he starts to get near the end.
  119.  *
  120.  * June 84, ACT: modified rcheck code to check the range given to malloc,
  121.  * rather than the range determined by the 2-power used.
  122.  *
  123.  * Jan 85, RMS: calls malloc_warning to issue warning on nearly full.
  124.  * No longer Emacs-specific; can serve as all-purpose malloc for GNU.
  125.  * You should call malloc_init to reinitialize after loading dumped Emacs.
  126.  * Call malloc_stats to get info on memory stats if MSTATS turned on.
  127.  * realloc knows how to return same block given, just changing its size,
  128.  * if the power of 2 is correct.
  129.  *
  130.  * May 88, Univ. of Washington: Significant (but relatively simple)
  131.  * changes to make this code work in a Sequent shared-memory/PRESTO
  132.  * environment.
  133.  *
  134.  * Perhaps the biggest difference is that whenever we have to ask for
  135.  * more space, we get a BIG chunk rather than a relatively small one.
  136.  * Another change is that requests for memory >= the system page size
  137.  * will return memory that is aligned to a page boundary, due to the
  138.  * prevalent use of mmap(2).
  139.  *
  140.  * Most of the changes are bracketed by the SHARED and PRESTO $ifdef's.
  141.  *
  142.  *
  143.  * Sept 89, Univ. of Washington: Modified for Quartz.  Added a check
  144.  * to see if profiling is on, to avoid a nasty deadlock.
  145.  *
  146.  * Sept. 89, U of W: Added a way of initially sbrk'ing a block of memory,
  147.  * since doing this after fork() is very expensive on the Sequent.
  148.  */
  149.  
  150. #define SHARED
  151.  
  152. #include <sys/types.h>
  153.  
  154. #ifdef SHARED
  155. #include "thread.h"
  156. #include "synch.h"
  157. #ifdef PROFILE
  158. extern int profileOn;
  159. #endif
  160. #define sbrk MySbrk
  161. #define malloc shmalloc
  162. #define mstats shmstats
  163. #define realloc shrealloc
  164. #define free shfree
  165. #endif
  166.  
  167. /*
  168.  * Determine which kind of system this is.
  169.  */
  170. #define BSD42
  171. #define BSD
  172. #include <sys/time.h>
  173. #include <sys/resource.h>
  174.  
  175. #define ISALLOC ((char) 0xf7)    /* magic byte that implies allocation */
  176. #define ISFREE ((char) 0x54)    /* magic byte that implies free block */
  177.                 /* this is for error checking only */
  178. #define ISMEMALIGN ((char) 0xd6)  /* Stored before the value returned by
  179.                      memalign, with the rest of the word
  180.                      being the distance to the true
  181.                      beginning of the block.  */
  182.  
  183. /*
  184.  * NBINS == number of "headers" pointing to blocks of size 2**(n+3).
  185.  */
  186. #define NBINS 30
  187.  
  188. /*
  189.  * If MSTATS is defined then
  190.  * nmalloc[i] is the difference between the number of mallocs and frees
  191.  * for a given block size.
  192.  */
  193.  
  194. #ifdef MSTATS
  195. #ifdef SHARED
  196. shared static int nmalloc[NBINS];
  197. shared static int nmal, nfre;
  198. #else
  199. static int nmalloc[NBINS];
  200. static int nmal, nfre;
  201. #endif
  202. #endif /* MSTATS */
  203.  
  204. /*
  205.  * If range checking is not turned on, all we have is a flag indicating
  206.  * whether memory is allocated, an index in nextf[], and a size field; to
  207.  * realloc() memory we copy either size bytes or 1<<(index+3) bytes depending
  208.  * on whether the former can hold the exact size (given the value of
  209.  * 'index').  If range checking is on, we always need to know how much space
  210.  * is allocated, so the 'size' field is never used.
  211.  */
  212.  
  213. struct mhead {
  214.     char     mh_alloc;    /* ISALLOC or ISFREE */
  215.     char     mh_index;    /* index in nextf[] */
  216. /* Remainder are valid only when block is allocated */
  217.     unsigned short mh_size;    /* size, if < 0x10000 */
  218. #ifdef rcheck
  219.     unsigned mh_nbytes;    /* number of bytes allocated */
  220.     int      mh_magic4;    /* should be == MAGIC4 */
  221. #endif /* rcheck */
  222. };
  223.  
  224. /*
  225.  * Access free-list pointer of a block.
  226.  * It is stored at block + 4.
  227.  * This is not a field in the mhead structure
  228.  * because we want sizeof (struct mhead)
  229.  * to describe the overhead for when the block is in use,
  230.  * and we do not want the free-list pointer to count in that.
  231.  */
  232.  
  233. #define CHAIN(a) \
  234.   (*(struct mhead **) (sizeof (char *) + (char *) (a)))
  235.  
  236. #ifdef rcheck
  237.  
  238. /*
  239.  * To implement range checking, we write magic values in at the beginning and
  240.  * end of each allocated block, and make sure they are undisturbed whenever a
  241.  * free or a realloc occurs.
  242.  */
  243.  
  244. /* Written in each of the 4 bytes following the block's real space */
  245. #define MAGIC1 0x55
  246.  
  247. /* Written in the 4 bytes before the block's real space */
  248. #define MAGIC4 0x55555555
  249.  
  250. #define SHMASSERT(p) if (!(p)) botch("p"); else
  251. #define EXTRA  4        /* 4 bytes extra for MAGIC1s */
  252.  
  253. #else
  254.  
  255. #define SHMASSERT(p)
  256. #define EXTRA  0
  257.  
  258. #endif /* rcheck */
  259.  
  260. /*
  261.  * nextf[i] is the pointer to the next free block of size 2^(i+3).  The
  262.  * smallest allocatable block is 8 bytes.  The overhead information will
  263.  * go in the first int of the block, and the returned pointer will point
  264.  * to the second.
  265.  *
  266.  * busy[i] is meant to indicate that a recursive call to malloc
  267.  * has been made (e.g., via a signal handler). Not used in this
  268.  * (May 88) version.
  269.  */
  270.  
  271. #ifdef SHARED
  272. /* nextf[i] is free list of blocks of size 2**(i + 3)  */
  273. shared static struct mhead *nextf[NBINS];
  274.  
  275. /* busy[i] is nonzero while allocation of block size i is in progress.  */
  276. shared static char busy[NBINS];
  277.  
  278. /* Number of bytes of writable memory we can expect to be able to get */
  279. shared static unsigned int lim_data;
  280.  
  281. /* nonzero once initial bunch of free blocks made */
  282. shared static int gotpool;
  283.  
  284. /* Mutex for structure access */
  285. shared static SpinLock lock;
  286.  
  287. /* System page size in bytes */
  288. shared static int syspgsize;
  289. void shminit()
  290.     {
  291.     SpinLockInit(&lock, "shmalloc lock");
  292.     }
  293. #else
  294.  
  295. /* nextf[i] is free list of blocks of size 2**(i + 3)  */
  296. static struct mhead *nextf[NBINS];
  297.  
  298. /* busy[i] is nonzero while allocation of block size i is in progress.  */
  299. static char busy[NBINS];
  300.  
  301. /* Number of bytes of writable memory we can expect to be able to get */
  302. static unsigned int lim_data;
  303.  
  304. /* nonzero once initial bunch of free blocks made */
  305. static int gotpool;
  306.  
  307. /* System page size in bytes */
  308. static int syspgsize;
  309.  
  310. #endif
  311.  
  312. /*
  313.  * BRKSIZELOG2 is log2-3 of the minimum chunk of memory we will ask for
  314.  * if we have to request more memory via sbrk.  In our case we ask for
  315.  * the maximum that will fit in the mh_size field, 65K.
  316.  */
  317. #define BRKSIZELOG2 13
  318.  
  319. static morecore (nu)            /* ask system for more memory */
  320.     register int nu;        /* size index to get more of  */
  321. {
  322.     char *sbrk ();
  323.     register char *cp;
  324.     register int nblks;
  325.     register unsigned int siz;
  326.  
  327.  /*
  328.   * On initial startup, get one block of each size up to some reasonable
  329.   * size.
  330.   */
  331.   if (!gotpool) {
  332.     getpool (); 
  333.     gotpool = 1;
  334.     if ( nextf[nu] ) return; /* Getpool got it for us */
  335.    }
  336.  
  337.   cp = sbrk (0);
  338.   /*
  339.    * land on pagesize boundaries 
  340.    */
  341.   if (((int) cp + sizeof(struct mhead)) & (syspgsize-1)) {
  342.     sbrk (syspgsize - (((int) cp + sizeof( struct mhead)) & (syspgsize-1)));
  343.   }
  344.  
  345.  /*
  346.   * Must be either a big block or we are really out of memory.
  347.   */
  348.   nblks = 1;
  349.   if ((siz = nu) < BRKSIZELOG2)
  350.     nblks = 1 << ((siz = BRKSIZELOG2) - nu);
  351.  
  352.   if ((cp = sbrk (1 << (siz + 3))) == (char *) -1)
  353.     return;            /* no more room! */
  354.  
  355.   if ((int) cp & 7) {
  356.     /*
  357.      * shouldn't happen, but just in case
  358.      */
  359.     cp = (char *) (((int) cp + 8) & ~7);
  360.     nblks--;
  361.   }
  362.  
  363.   /*
  364.    * save new header and link the nblks blocks together
  365.    */
  366.   nextf[nu] = (struct mhead  *) cp;
  367.   siz = 1 << (nu + 3);
  368.   while (1) {
  369.     ((struct mhead *) cp) -> mh_alloc = ISFREE;
  370.     ((struct mhead *) cp) -> mh_index = nu;
  371.     if (--nblks <= 0)
  372.     break;
  373.     CHAIN ((struct mhead   *) cp) = (struct mhead  *) (cp + siz);
  374.     cp += siz;
  375.   }
  376.   CHAIN ((struct mhead   *) cp) = 0;
  377. }
  378.  
  379. static getpool ()
  380. {
  381.   register int nu;
  382.   char * sbrk ();
  383.   register char *cp = sbrk (0);
  384.   int logpgsz;
  385.   
  386.   if (((int) cp+sizeof(struct mhead)) & (syspgsize-1)) {
  387.     /*
  388.      * land on pagsize boundaries
  389.      */
  390.     sbrk (syspgsize - (((int) cp+sizeof(struct mhead)) & (syspgsize-1)));
  391.   }
  392.  
  393.   /* Get 16*pagesize of storage */
  394.  
  395.   cp = sbrk(16*syspgsize);
  396.   if (cp == (char *) -1)
  397.     return;
  398.  
  399.   /*
  400.   /* Divide it into an initial 8-word block
  401.    * plus one block of size 2**nu for nu = 3 ... log2(chunksize*pgsize)-1.
  402.    */
  403.   logpgsz = 8*syspgsize;
  404.   nu = 0;
  405.   while ( ! (logpgsz & 1) ) {
  406.       logpgsz >>= 1;
  407.       nu++;
  408.   }
  409.   logpgsz = nu - 3;
  410.   
  411.   CHAIN (cp) = nextf[0];
  412.   nextf[0] = (struct mhead *) cp;
  413.   ((struct mhead *) cp) -> mh_alloc = ISFREE;
  414.   ((struct mhead *) cp) -> mh_index = 0;
  415.   cp += 8;
  416.  
  417.   for (nu = 0; nu < logpgsz; nu++)
  418.     {
  419.       CHAIN (cp) = nextf[nu];
  420.       nextf[nu] = (struct mhead *) cp;
  421.       ((struct mhead *) cp) -> mh_alloc = ISFREE;
  422.       ((struct mhead *) cp) -> mh_index = nu;
  423.       cp += 8 << nu;
  424.     }
  425. }
  426.  
  427. char *malloc (n)        /* get a block */
  428.      unsigned n;
  429. {
  430.   register struct mhead *p;
  431.   register unsigned int nbytes;
  432.   register int nunits = 0;
  433.   int mustalign;
  434.   char *aligned;
  435.   struct mhead *p2;
  436.   
  437.   /*
  438.    * Figure out how many bytes are required, rounding up to the nearest
  439.    * multiple of 4, then figure out which nextf[] area to use.
  440.    */
  441.   if ( !syspgsize ) {
  442.       syspgsize = getpagesize();
  443.   }
  444.  
  445.   /*
  446.    * If asking for >= syspgsize bytes, make sure
  447.    * the return value is page aligned in case of mmap(2).
  448.    */
  449.   if ( n >= syspgsize ) {
  450.     mustalign = 1;
  451.       n += syspgsize;
  452.   }
  453.   else {
  454.     mustalign = 0;
  455.   }
  456.     
  457.   nbytes = (n + sizeof *p + EXTRA + 3) & ~3;
  458.   {
  459.     register unsigned int   shiftr = (nbytes - 1) >> 2;
  460.  
  461.     while (shiftr >>= 1)
  462.       nunits++;
  463.   }
  464.  
  465. #ifdef SHARED
  466. #ifdef PROFILE
  467.   if (profileOn) SpinLockAcquire(&lock);
  468.   else SLNPAcquire(&lock);
  469. #else
  470.   SpinLockAcquire(&lock);
  471. #endif
  472. #endif
  473.  
  474.   /* If there are no blocks of the appropriate size, go get some */
  475.   /* COULD SPLIT UP A LARGER BLOCK HERE ... ACT */
  476.   if (nextf[nunits] == 0)
  477.     morecore (nunits);
  478.  
  479.   /* Get one block off the list, and set the new list head */
  480.   if ((p = nextf[nunits]) == 0) {
  481. #ifdef SHARED
  482. #ifdef PROFILE
  483.       if (profileOn) SpinLockRelease(&lock);
  484.       else SLNPRelease(&lock);
  485. #else
  486.       SpinLockRelease(&lock);
  487. #endif
  488. #endif
  489.       return 0;
  490.   }
  491.  
  492.   nextf[nunits] = CHAIN (p);
  493. #ifdef SHARED
  494. #ifdef PROFILE
  495.    if (profileOn) SpinLockRelease(&lock);
  496.    else SLNPRelease(&lock);
  497. #else
  498.       SpinLockRelease(&lock);
  499. #endif
  500. #endif
  501.  
  502.   /*
  503.    * Check for free block clobbered
  504.    * If not for this check, we would gobble a clobbered free chain ptr
  505.    * and bomb out on the NEXT allocate of this size block
  506.    */
  507.   if (p -> mh_alloc != ISFREE || p -> mh_index != nunits)
  508. #ifdef rcheck
  509.     botch ("block on free list clobbered");
  510. #else /* not rcheck */
  511.     abort ();
  512. #endif /* not rcheck */
  513.  
  514.   /* Fill in the info, and if range checking, set up the magic numbers */
  515.   p -> mh_alloc = ISALLOC;
  516.  
  517. #ifdef rcheck
  518.   p -> mh_nbytes = n;
  519.   p -> mh_magic4 = MAGIC4;
  520.   {
  521.     register char  *m = (char *) (p + 1) + n;
  522.  
  523.     *m++ = MAGIC1, *m++ = MAGIC1, *m++ = MAGIC1, *m = MAGIC1;
  524.   }
  525. #else /* not rcheck */
  526.   p -> mh_size = n;
  527. #endif /* not rcheck */
  528.  
  529. #ifdef MSTATS
  530.   nmalloc[nunits]++;
  531.   nmal++;
  532. #endif /* MSTATS */
  533.  
  534.   if ( mustalign ) {
  535.       if ( ((int)(p+1) & (syspgsize-1)) != 0 ) {
  536.       aligned = (char *) (p+1);
  537.       aligned = (char *) (((int)aligned + syspgsize - 1) & -syspgsize);
  538.       p2 = (struct mhead *) aligned - 1;
  539.       p2->mh_size = aligned - (char *)( p - 1 );
  540.       p2->mh_alloc = ISMEMALIGN;
  541.       return aligned;
  542.       }
  543.   }
  544.   
  545.   return (char *) (p + 1);
  546. }
  547.  
  548. free (mem)
  549.      char *mem;
  550. {
  551.   register struct mhead *p;
  552.  
  553.   {
  554.     register char *ap = mem;
  555.  
  556.     if (ap == 0)
  557.       return;
  558.  
  559.     p = (struct mhead *) ap - 1;
  560.     if (p -> mh_alloc == ISMEMALIGN)
  561.       {
  562.     ap -= p->mh_size;
  563.     p = (struct mhead *) ap - 1;
  564.       }
  565.  
  566.     if (p -> mh_alloc != ISALLOC)
  567. #ifdef rcheck
  568.       abort ();
  569. #else
  570.       return;
  571. #endif
  572. #ifdef rcheck
  573.     SHMASSERT (p -> mh_magic4 == MAGIC4);
  574.     ap += p -> mh_nbytes;
  575.     SHMASSERT (*ap++ == MAGIC1); SHMASSERT (*ap++ == MAGIC1);
  576.     SHMASSERT (*ap++ == MAGIC1); SHMASSERT (*ap   == MAGIC1);
  577. #endif /* rcheck */
  578.  
  579.   }
  580.  
  581.   {
  582.     register int nunits = p -> mh_index;
  583.  
  584.     SHMASSERT (nunits <= (NBINS-1));
  585.     p -> mh_alloc = ISFREE;
  586. #ifdef SHARED
  587.     SpinLockAcquire(&lock);
  588. #endif
  589.     /* Put this block on the free list.  */
  590.     CHAIN (p) = nextf[nunits];
  591.     nextf[nunits] = p;
  592.  
  593. #ifdef MSTATS
  594.     nmalloc[nunits]--;
  595.     nfre++;
  596. #endif /* MSTATS */
  597. #ifdef SHARED
  598.    SpinLockRelease(&lock);
  599. #endif
  600.   }
  601. }
  602.  
  603.  
  604. #ifdef MSTATS
  605. /*
  606.  * Return statistics describing allocation of blocks of size 2**n.
  607.  *
  608.  * This seems like a foolish way to do things, but who am I to argue
  609.  * with Stallman, et al.
  610.  */
  611.  
  612. struct mstats_value {
  613.     int blocksize;
  614.     int nfree;
  615.     int nused;
  616. };
  617.  
  618. struct mstats_value malloc_stats (size)
  619.      int size;
  620. {
  621.   struct mstats_value v;
  622.   register int i;
  623.   register struct mhead *p;
  624.  
  625.   v.nfree = 0;
  626.  
  627.   if (size < 0 || size >= NBINS)
  628.     {
  629.       v.blocksize = 0;
  630.       v.nused = 0;
  631.       return v;
  632.     }
  633.  
  634. #ifdef SHARED
  635.   SpinLockAcquire(&lock);
  636. #endif
  637.   v.blocksize = 1 << (size + 3);
  638.   v.nused = nmalloc[size];
  639.  
  640.   for (p = nextf[size]; p; p = CHAIN (p))
  641.     v.nfree++;
  642.  
  643. #ifdef SHARED
  644.   SpinLockRelease(&lock);
  645. #endif
  646.   return v;
  647. }
  648. #endif /* MSTATS */
  649.  
  650. char *realloc (mem, n)
  651.     char *mem;
  652.     register unsigned n;
  653. {
  654.   register struct mhead *p;
  655.   register unsigned int tocopy;
  656.   register unsigned int nbytes;
  657.   register int nunits;
  658.  
  659.   if ((p = (struct mhead *) mem) == 0)
  660.     return malloc (n);
  661.   p--;
  662.   nunits = p -> mh_index;
  663.   SHMASSERT (p -> mh_alloc == ISALLOC);
  664.  
  665. #ifdef rcheck
  666.   SHMASSERT (p -> mh_magic4 == MAGIC4);
  667.   {
  668.     register char *m = mem + (tocopy = p -> mh_nbytes);
  669.     SHMASSERT (*m++ == MAGIC1); SHMASSERT (*m++ == MAGIC1);
  670.     SHMASSERT (*m++ == MAGIC1); SHMASSERT (*m   == MAGIC1);
  671.   }
  672. #else /* not rcheck */
  673.   if (p -> mh_index >= 13)
  674.     tocopy = (1 << (p -> mh_index + 3)) - sizeof *p;
  675.   else
  676.     tocopy = p -> mh_size;
  677. #endif /* not rcheck */
  678.  
  679.   /* See if desired size rounds to same power of 2 as actual size. */
  680.   nbytes = (n + sizeof *p + EXTRA + 7) & ~7;
  681.  
  682.   /* If ok, use the same block, just marking its size as changed.  */
  683.   if (nbytes > (4 << nunits) && nbytes <= (8 << nunits))
  684.     {
  685. #ifdef rcheck
  686.       register char *m = mem + tocopy;
  687.       *m++ = 0;  *m++ = 0;  *m++ = 0;  *m++ = 0;
  688.       p-> mh_nbytes = n;
  689.       m = mem + n;
  690.       *m++ = MAGIC1;  *m++ = MAGIC1;  *m++ = MAGIC1;  *m++ = MAGIC1;
  691. #else /* not rcheck */
  692.       p -> mh_size = n;
  693. #endif /* not rcheck */
  694.       return mem;
  695.     }
  696.  
  697.   if (n < tocopy)
  698.     tocopy = n;
  699.   {
  700.     register char *new;
  701.  
  702.     if ((new = malloc (n)) == 0)
  703.       return 0;
  704.     bcopy (mem, new, tocopy);
  705.     free (mem);
  706.     return new;
  707.   }
  708. }
  709.  
  710. /*
  711.  * The following routines are not used and are left for documentation
  712.  * purposes only.
  713.  */
  714.  
  715. #ifdef NOTDEF
  716. char *memalign ( alignment, size)
  717.      unsigned alignment, size;
  718. {
  719.   register char *ptr = malloc (size + alignment);
  720.   register char *aligned;
  721.   register struct mhead *p;
  722.  
  723.   if (ptr == 0)
  724.     return 0;
  725.   /*
  726.    * If entire block has the desired alignment, just accept it.
  727.    */
  728.   if (((int) ptr & (alignment - 1)) == 0)
  729.     return ptr;
  730.   /* Otherwise, get address of byte in the block that has that alignment.  */
  731.   aligned = (char *) (((int) ptr + alignment - 1) & -alignment);
  732.   /* Store a suitable indication of how to free the block,
  733.      so that free can find the true beginning of it.  */
  734.   p = (struct mhead *) aligned - 1;
  735.   p -> mh_size = aligned - ptr;
  736.   p -> mh_alloc = ISMEMALIGN;
  737.   return aligned;
  738. }
  739.  
  740. /* This runs into trouble with getpagesize on HPUX.
  741.    Patching out seems cleaner than the ugly fix needed.
  742. char *
  743. valloc (size)
  744. {
  745.   return memalign (getpagesize (), size);
  746. }
  747. */
  748.  
  749. get_lim_data ()
  750. {
  751.   struct rlimit XXrlimit;
  752.  
  753.   getrlimit (RLIMIT_DATA, &XXrlimit);
  754. #ifdef RLIM_INFINITY
  755.   lim_data = XXrlimit.rlim_cur & RLIM_INFINITY; /* soft limit */
  756. #else
  757.   lim_data = XXrlimit.rlim_cur;    /* soft limit */
  758. #endif
  759. }
  760.  
  761. #endif NOTDEF
  762.  
  763. #ifdef SHARED
  764. static shared char *initBrk;
  765. static shared char *initEnd;
  766. static shared int beyondInit = 1;
  767.  
  768. void SbrkInit (x)
  769.     int x;
  770.     {
  771.     char *shsbrk();
  772.  
  773.     if (!x)
  774.         beyondInit = 1;
  775.     else
  776.         {
  777.         initBrk = shsbrk(x);
  778.         initEnd = initBrk + x;
  779.         beyondInit = 0;
  780.         }
  781.     }
  782.  
  783. char *MySbrk (x)
  784.     int x;
  785.     {
  786.     char *p;
  787.     int d;
  788.  
  789.     if (beyondInit)
  790.         return(shsbrk(x));
  791.     d = x - (initEnd - initBrk);
  792.     if (d > 0)
  793.         {
  794.         shsbrk(d);
  795.         beyondInit = 1;
  796.         return(initBrk);
  797.         }
  798.     p = initBrk;
  799.     initBrk += x;
  800.     return(p);
  801.     }
  802. #endif
  803.